9 lines
217 B
C#
9 lines
217 B
C#
using SteUp.Shared.Core.Dto;
|
|
|
|
namespace SteUp.Shared.Core.Interface.System;
|
|
|
|
public interface IAttachedService
|
|
{
|
|
Task<AttachedDto?> SelectImageFromCamera();
|
|
Task<List<AttachedDto>?> SelectImageFromGallery();
|
|
} |