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

13 lines
288 B
C#
Raw Normal View History

2019-12-03 15:20:21 +00:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ASC.Core.Common.EF.Model
{
[Table("tenants_forbiden")]
public class DbTenantForbiden
{
[Key]
public string Address { get; set; }
}
}