48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using xModels.Base;
|
|
|
|
namespace xAiModels.Models.Entities
|
|
{
|
|
/// <summary>
|
|
/// Describe a Project ...
|
|
/// </summary>
|
|
public class XAiProject : XBaseGuidIDEntity
|
|
{
|
|
/// <summary>
|
|
/// User Identifier ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
[Required]
|
|
[StringLength(255)]
|
|
public string OwnerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Title of Project ...
|
|
/// </summary>
|
|
[Required]
|
|
[StringLength(255)]
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// Description of Project ...
|
|
/// </summary>
|
|
[StringLength(1000)]
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// a Prompt for Project Start ...
|
|
/// </summary>
|
|
public string Prompt { get; set; }
|
|
|
|
/// <summary>
|
|
/// Created Time ...
|
|
/// </summary>
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
/// <summary>
|
|
/// Updated Time ...
|
|
/// </summary>
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|
|
} |