Contents Reappend

This commit is contained in:
luosheng
2023-02-13 18:14:23 +08:00
parent 5191801823
commit 4e70553bfc
84 changed files with 74695 additions and 19 deletions

View File

@@ -0,0 +1,9 @@
namespace AnyType.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
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; }
}
}