BotSharp/src/Infrastructure/BotSharp.Abstraction/Agents/Models/Agent.cs

17 lines
457 B
C#
Raw Normal View History

2023-06-11 15:22:48 +00:00
namespace BotSharp.Abstraction.Agents.Models;
public class Agent
{
[StringLength(36)]
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string? Description { get; set; }
public DateTime CreatedDateTime { get; set; }
public DateTime UpdatedDateTime { get; set; }
/// <summary>
/// Owner user id
/// </summary>
public string OwerId { get; set; } = string.Empty;
}