20 lines
549 B
C#
20 lines
549 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace SHERPA.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("OhStdCost")]
|
|
public partial class OhStdCostModel
|
|
{
|
|
public int AnnoRif { get; set; }
|
|
public string Oh { get; set; } = null!;
|
|
public string? Unit { get; set; }
|
|
public decimal UnitCost { get; set; }
|
|
public string? Note { get; set; }
|
|
}
|
|
}
|