Warning fix

This commit is contained in:
luosheng
2023-02-18 08:52:21 +08:00
parent 5118fc5ac3
commit d99cad0d77
23 changed files with 283 additions and 93 deletions

View File

@@ -7,10 +7,10 @@ namespace AnyType.Models
{
public class TaskViewModel
{
public string Id { get; set; }
public string Name { get; set; }
public string Address { get; set; }
public double Value { get; set; }
public string Type { get; set; }
public string? Id { get; set; }
public string? Name { get; set; }
public string? Address { get; set; }
public double? Value { get; set; }
public string? Type { get; set; }
}
}