9 lines
170 B
C#
9 lines
170 B
C#
namespace YaeBlog.Core.Models;
|
|
|
|
public class BlogContent
|
|
{
|
|
public required string FileName { get; init; }
|
|
|
|
public required string FileContent { get; init; }
|
|
}
|