選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

lu_groups.cs 467B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. namespace Luticate2.Auth.DataAccess.Models
  6. {
  7. public partial class lu_groups
  8. {
  9. public Guid id { get; set; }
  10. public string name { get; set; }
  11. public virtual ICollection<lu_verb_users_groups> lu_verb_users_groups_fk { get; set; }
  12. }
  13. }