DD.WellWorkover.Cloud/AsbCloudDb/Model/GTR/WitsStr.cs

9 lines
293 B
C#
Raw Normal View History

2023-03-28 01:05:15 +05:00
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace AsbCloudDb.Model.GTR
{
[Table("t_wits_string"), Comment("таблица данных ГТИ с типом значения string")]
2023-03-31 11:10:16 +05:00
public class WitsStr: WitsItemBase<string> { }
2023-03-28 01:05:15 +05:00
}