21 lines
465 B
C#
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; }
|
|
}
|
|
}
|