using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ACLib.P2.AppContext.Models
|
|
{
|
|
public partial class AC_Clients
|
|
{
|
|
[Key]
|
|
public int ID { get; set; }
|
|
public string ClientName { get; set; }
|
|
public string ClientID { get; set; }
|
|
public string ClientSecret { get; set; }
|
|
public int Status { get; set; }
|
|
public DateTime CreatedDate { get; set; }
|
|
public DateTime? UpdatedDate { get; set; }
|
|
}
|
|
}
|