You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuGroupsObjects.cs 345B

1234567891011121314
  1. using System;
  2. namespace Luticate2.Auth.DataAccess.Models
  3. {
  4. public partial class LuGroupsObjects
  5. {
  6. public Guid GroupId { get; set; }
  7. public Guid ObjectId { get; set; }
  8. public int? Priority { get; set; }
  9. public LuGroups Group { get; set; }
  10. public LuObjectsMetadata Object { get; set; }
  11. }
  12. }