BotSharp/BotSharp.Core/Entities/EntrySynonym.cs

21 lines
507 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")]
2018-05-22 00:39:33 +00:00
public class EntrySynonym : DbRecord, IDbRecord
2018-04-02 22:42:11 +00:00
{
[Required]
[StringLength(36)]
public String EntityEntryId { get; set; }
[MaxLength(64)]
public String Synonym { get; set; }
}
}