DocSpace-client/common/ASC.Core.Common/EF/Model/Subscription.cs

16 lines
441 B
C#

using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("core_subscription")]
public class Subscription
{
public int Tenant { get; set; }
public string Source { get; set; }
public string Action { get; set; }
public string Recipient { get; set; }
public string Object { get; set; }
public bool Unsubscribed { get; set; }
}
}