11 lines
224 B
C#
11 lines
224 B
C#
namespace YaeBlog.Core.Models;
|
|
|
|
public class AboutInfo
|
|
{
|
|
public required string Introduction { get; set; }
|
|
|
|
public required string Description { get; set; }
|
|
|
|
public required string AvatarImage { get; set; }
|
|
}
|