Files
WaterCloudForJt/WaterCloud.Code/Model/ApiToken.cs
2025-03-05 19:42:01 +08:00

15 lines
383 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace WaterCloud.Code.Model
{
/// <summary>
/// 这个是移动端Api用的
/// </summary>
public class BaseApiToken
{
[NotMapped]
[Description("WebApi没有Cookie和Session所以需要传入Token来标识用户身份请加在Url后面")]
public string Token { get; set; }
}
}