Files
elma/AppData/v_dimensDistinct.cs
2020-08-24 23:11:46 +02:00

21 lines
465 B
C#

namespace AppData
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
public partial class v_dimensDistinct
{
[Key]
[StringLength(50)]
public string Cat { get; set; }
[StringLength(100)]
public string Val { get; set; }
public int? Num { get; set; }
}
}