123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
- // If you have enabled NRTs for your project, then un-comment the following line:
- // #nullable disable
- namespace MS.WebApi.Models2
- {
- public partial class MembershipGrowthRules
- {
- public Guid Id { get; set; }
- public short? GrowthType { get; set; }
- public short? ValidateType { get; set; }
- public DateTime? ValidBegin { get; set; }
- public DateTime? ValidEnd { get; set; }
- public Guid? BuInfoCreatedId { get; set; }
- public Guid? BuInfoId { get; set; }
- public DateTime? LastModified { get; set; }
- public virtual BusinessUnitInfo BuInfo { get; set; }
- public virtual BusinessUnitInfo BuInfoCreated { get; set; }
- }
- }
|