BotSharp/BotSharp.Core/Entities/EntityEntrySynonym.cs

21 lines
513 B
C#
Raw Normal View History

2018-04-02 22:42:11 +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.Core.Entities
{
[Table("Bot_EntityEntrySynonym")]
public class EntityEntrySynonym : DbRecord, IDbRecord
{
[Required]
[StringLength(36)]
public String EntityEntryId { get; set; }
[MaxLength(64)]
public String Synonym { get; set; }
}
}