14 lines
239 B
C#
14 lines
239 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
#nullable disable
|
|
|
|
namespace ChaosBot.Models
|
|
{
|
|
public partial class LodestoneFreeCompany
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
}
|