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

16 lines
416 B
C#

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF
{
[Table("core_subscriptionmethod")]
public class SubscriptionMethod
{
public int Tenant { get; set; }
public Guid Source { get; set; }
public string Action { get; set; }
public Guid Recipient { get; set; }
public string Sender { get; set; }
}
}