28 lines
701 B
C#
28 lines
701 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Shared.Domain
|
|
{
|
|
public class Schacht
|
|
{
|
|
public int Id { get; set; }
|
|
public string Objektbezeichnung { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,4)")]
|
|
public decimal RechtsWert { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,4)")]
|
|
public decimal HochWert { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,4)")]
|
|
public decimal SohlHoehe { get; set; }
|
|
|
|
[Column(TypeName = "decimal(18,4)")]
|
|
public decimal DeckelHoehe { get; set; }
|
|
}
|
|
}
|