Files
ROLAC/API/ROLAC.API/Services/IChurchProfileService.cs
Chris Chen 3558c67fd7 WIP
2026-06-20 17:51:33 -07:00

10 lines
201 B
C#

using ROLAC.API.DTOs.Disbursement;
namespace ROLAC.API.Services;
public interface IChurchProfileService
{
Task<ChurchProfileDto> GetAsync();
Task UpdateAsync(UpdateChurchProfileRequest r);
}