13 lines
407 B
C#
13 lines
407 B
C#
using Core.Blueprint.SQLServer.Entities;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Core.Blueprint.DAL.SQLServer.Entities
|
|
{
|
|
[Table("UserProjects")]
|
|
public class UserProject : BaseSQLAdapter
|
|
{
|
|
public string ProjectCode { get; set; } = null!;
|
|
public string ProjectDescription { get; set; } = null!;
|
|
public string UserId { get; set; } = null!;
|
|
}
|
|
} |