24 lines
657 B
C#
24 lines
657 B
C#
using Elwig.Helpers;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Elwig.Models {
|
|
[Table("currency"), PrimaryKey("Code")]
|
|
public class Currency {
|
|
[Column("code")]
|
|
public string Code { get; private set; }
|
|
|
|
[Column("name")]
|
|
public string Name { get; private set; }
|
|
|
|
[Column("symbol")]
|
|
public string? Symbol { get; private set; }
|
|
|
|
[Column("one_euro")]
|
|
public long? OneEuroValue { get; private set; }
|
|
|
|
[NotMapped]
|
|
public decimal? OneEuro => OneEuroValue != null ? Utils.DecFromDb((long)OneEuroValue, 6) : null;
|
|
}
|
|
}
|