mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
11 lines
213 B
C#
11 lines
213 B
C#
|
|
namespace Myriad.Types;
|
||
|
|
|
||
|
|
public record RefreshedUrlsResponse
|
||
|
|
{
|
||
|
|
public record RefreshedUrl
|
||
|
|
{
|
||
|
|
public string Original;
|
||
|
|
public string Refreshed;
|
||
|
|
}
|
||
|
|
public RefreshedUrl[] RefreshedUrls;
|
||
|
|
}
|