17 lines
487 B
C#
17 lines
487 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
|
|||
|
{
|
|||
|
public partial class ActiveSubscription
|
|||
|
{
|
|||
|
public Guid ActiveId { get; set; }
|
|||
|
public Guid SubscriptionId { get; set; }
|
|||
|
public int? TotalNotifications { get; set; }
|
|||
|
public int TotalSuccesses { get; set; }
|
|||
|
public int TotalFailures { get; set; }
|
|||
|
|
|||
|
public virtual Subscription Subscription { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|