DocSpace-client/common/ASC.Core.Common/EF/Subscription.cs
2019-11-25 12:49:12 +03:00

17 lines
452 B
C#

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