BotSharp/BotSharp.Core/Models/EntityBase.cs

17 lines
332 B
C#
Raw Normal View History

2018-09-29 18:18:34 +00:00
using System;
using System.Collections.Generic;
2018-09-30 15:11:36 +00:00
using System.ComponentModel.DataAnnotations;
2018-09-29 18:18:34 +00:00
using System.Text;
namespace BotSharp.Platform.Models
{
public abstract class EntityBase
{
2018-09-30 15:11:36 +00:00
/// <summary>
/// Guid
/// </summary>
[StringLength(36)]
public String Id { get; set; }
2018-09-29 18:18:34 +00:00
}
}