|
|
|
@ -1,12 +1,9 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
|
|
namespace Entities
|
|
|
|
|
{
|
|
|
|
|
namespace Entities;
|
|
|
|
|
|
|
|
|
|
[Table("BlackList")]
|
|
|
|
|
public class BlackListEntity
|
|
|
|
|
{
|
|
|
|
|
[Key]
|
|
|
|
@ -19,4 +16,3 @@ namespace Entities
|
|
|
|
|
ExpirationDate = expirationDate;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|