Rename solution directory to Elwig

This commit is contained in:
2023-03-18 11:04:22 +01:00
parent 649578e8bf
commit 769d80eb81
48 changed files with 7 additions and 11 deletions

22
Elwig/Models/WineQual.cs Normal file
View File

@ -0,0 +1,22 @@
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace Elwig.Models {
[Table("wine_quality"), PrimaryKey("QualId")]
public class WineQual {
[Column("qualid")]
public string QualId { get; private set; }
[Column("origin_level")]
public int? OriginLevel { get; private set; }
[Column("name")]
public string Name { get; private set; }
[Column("from_kmw")]
public double? FromKmw { get; private set; }
[Column("to_kmw")]
public double? ToKmw { get; private set; }
}
}