//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Neo.Legitimate.Data.Models { using System.Web.Script.Serialization; using System; using System.Collections.Generic; public partial class AssociationCleanupSummary { public long AssociationID { get; set; } public bool AssociationDataReceived { get; set; } public int AssociationDataMemberCount { get; set; } public int AssociationDataLicenceCount { get; set; } public int TotalMemberVerificationsInProgress { get; set; } public int TotalMembersVerified { get; set; } public int TotalMembersCancelled { get; set; } public int TotalLicenceVerificationsInProgress { get; set; } public int TotalLicencesVerified { get; set; } public int TotalLicencesCancelled { get; set; } public Nullable TotalMembersCleaned { get; set; } public Nullable TotalLicencesCleaned { get; set; } public virtual Associations Association { get; set; } } }