a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
25 lines
608 B
C#
25 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EgwProxy.SqlDb.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("ActType")]
|
|
public partial class ActTypeModel
|
|
{
|
|
[Key, StringLength(250)]
|
|
public string Action { get; set; } = "";
|
|
|
|
[StringLength(500)]
|
|
public string Description { get; set; } = "";
|
|
|
|
}
|
|
}
|