This commit is contained in:
cjd
2025-11-04 21:09:16 +08:00
parent 8260e293c7
commit bb90a020dc
592 changed files with 61749 additions and 27 deletions

25
DouyinApi.Model/Love.cs Normal file
View File

@@ -0,0 +1,25 @@
namespace DouyinApi.Model
{
/// <summary>
/// 这是爱
/// </summary>
public class Love
{
public virtual string SayLoveU()
{
return "I ♥ U";
}
/// <summary>
/// id
/// </summary>
public int Id { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
/// <summary>
/// 年龄
/// </summary>
public int Age { get; set; }
}
}