DocSpace-buildtools/common/ASC.Core.Common/EF/Model/Tenant/TenantIpRestrictions.cs

13 lines
310 B
C#
Raw Normal View History

2019-12-10 14:47:48 +00:00
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("tenants_iprestrictions")]
public class TenantIpRestrictions
{
public int Id { get; set; }
public int Tenant { get; set; }
public string Ip { get; set; }
}
}