20 lines
526 B
C#
20 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
#nullable disable
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
namespace MP.Data.DatabaseModels
|
|
{
|
|
public partial class vSelOdlModel
|
|
{
|
|
[Key]
|
|
public int value { get; set; } = 0;
|
|
public string label { get; set; } = "";
|
|
public DateTime? conditio { get; set; } = DateTime.Now;
|
|
}
|
|
}
|