BotSharp/BotSharp.Platform.OwnThink/Models/EntrySynonym.cs

26 lines
588 B
C#
Raw Normal View History

2019-03-16 16:23:02 +00:00
using EntityFrameworkCore.BootKit;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace BotSharp.Platform.OwnThink.Models
{
public class EntrySynonym
{
/// <summary>
/// Guid
/// </summary>
[StringLength(36)]
public String Id { get; set; }
[Required]
[StringLength(36)]
public String EntityEntryId { get; set; }
[MaxLength(128)]
public String Synonym { get; set; }
}
}