mirror of
https://github.com/BlossomiShymae/Needlework.Net.git
synced 2025-12-06 10:10:48 +01:00
10 lines
253 B
C#
10 lines
253 B
C#
namespace Needlework.Net.Models;
|
|
|
|
public class Library
|
|
{
|
|
public required string Repo { get; init; }
|
|
public string? Description { get; init; }
|
|
public required string Language { get; init; }
|
|
public required string Link { get; init; }
|
|
}
|