Move sound synthesizers admin index to Blazor.

This commit is contained in:
2020-05-24 18:46:48 +01:00
parent 9db3bb93de
commit 051a1233e3
9 changed files with 336 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace Marechai.ViewModels
{
@@ -15,5 +16,8 @@ namespace Marechai.ViewModels
public int? SquareWave { get; set; }
public int? WhiteNoise { get; set; }
public int? Type { get; set; }
[NotMapped]
public string IntroducedView => Introduced?.ToShortDateString() ?? "Unknown";
}
}