2022-03-22 03:43:33 +00:00
|
|
|
using NodaTime;
|
|
|
|
|
|
|
|
using SqlKata;
|
|
|
|
|
|
|
|
namespace PluralKit.Core;
|
|
|
|
|
2022-03-30 06:36:39 +00:00
|
|
|
public class AutoproxyPatch: PatchObject
|
2022-03-22 03:43:33 +00:00
|
|
|
{
|
|
|
|
public Partial<AutoproxyMode> AutoproxyMode { get; set; }
|
|
|
|
public Partial<MemberId?> AutoproxyMember { get; set; }
|
|
|
|
|
|
|
|
public Partial<Instant> LastLatchTimestamp { get; set; }
|
|
|
|
|
|
|
|
public override Query Apply(Query q) => q.ApplyPatch(wrapper => wrapper
|
|
|
|
.With("autoproxy_mode", AutoproxyMode)
|
|
|
|
.With("autoproxy_member", AutoproxyMember)
|
|
|
|
.With("last_latch_timestamp", LastLatchTimestamp)
|
|
|
|
);
|
|
|
|
}
|